b9936e3aa2335ef10cd7b93d5c175e4abdf58742,pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/utils/StopUtils.java,StopUtils,verifyStopAreaPlatform,#OsmPrimitive#,64

Before Change


			return false;
		}

		if (rm.hasTag("public_transport", "platform")) {
			return true;
		}
		return false;

After Change


			return false;
		}

		if (rm.hasTag("public_transport", "platform") || rm.hasTag("highway", "bus_stop")
				|| rm.hasTag("highway", "platform") || rm.hasTag("railway", "platform")) {
			return true;
		}